.productNew {
    padding: 100px 0;
}

.productNew .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productNew .top .More {
    display: block;
    width: 210px;
    line-height: 58px;
    color: #000;
    border: 1px solid #ddd;
    font-size: 16px;
    text-align: center;
    transition: all .3s;
}

.productList {
    margin-top: 65px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.productList .item {
    display: inline-block;
    width: calc(25% - 30px);
    vertical-align: top;
    margin: 0 15px;
    margin-bottom: 35px;
    background: #f9f9f9;
    height: 470px;
    padding: 30px;
    transition: all .3s;
}

.productList .item:hover {
    box-shadow: 5px 5px 5px #ddd;
}

.productList .item .cp {
    height: 320px;
    line-height: 320px;
    width: 100%;
    object-fit: contain;
}

.productList .item .text {
    margin-top: 20px;
    text-align: center;
    position: relative;
}

.productList .item .text h1 {
    font-size: 19px;
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.productList .item .text span {
    display: inline-block;
    width: 130px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #3c3c3c;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -65px;
    opacity: 0;
    transition: all .3s;
}

.productList .item:hover h1 {
    opacity: 0;
}

.productList .item:hover span {
    opacity: 1;
}

@media (max-width: 1600px) {
    .productList .item {
        height: 400px;
        padding: 20px;
    }

    .productList .item .cp {
        height: 260px;
        line-height: 260px;
    }
}

@media (max-width: 1200px) {
    .productList {
        margin-left: -7px;
        margin-right: -7px;
    }

    .productList .item {
        width: calc(25% - 14px);
        margin: 0 7px;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .productList {
        justify-content: space-between;
    }

    .productList .item {
        width: 48%;
        margin: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 750px) {
    .productNew {
        padding: 0.8rem 0;
    }

    .productNew .top .More {
        width: auto;
        min-width: 2.6rem;
        font-size: .26rem;
        line-height: .8rem;
        padding: 0 0.3rem;
    }

    .productList {
        margin-top: 0.5rem;
    }

    .productList .item {
        padding: 0.3rem;
        height: 5rem;
    }


    .productList .item .cp {
        height: 3rem;
        line-height: 3rem;
    }

    .productList .item .text h1 {
        font-size: .3rem;
        line-height: .4rem;
        height: 0.4rem;
    }

    .productList .item .text span {
        width: 2rem;
        font-size: .26rem;
        line-height: .6rem;
        margin-left: -1rem;
    }
}

/* 产品定制 */

.CPDZ_box1 {
    height: 600px;
    max-height: 80vh;
    position: relative;
    z-index: -1;
    margin-top: -142px;
    display: flex;
    justify-content: center;
}

.CPDZ_box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CPDZ_box1 h1 {
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    padding-top: 300px;
    position: absolute;
}

@media (max-width: 1600px) {
    .CPDZ_box1 {
        height: 500px
    }

    .CPDZ_box1 h1 {
        font-size: 36px;
        padding-top: 260px;
    }
}

@media (max-width: 1200px) {
    .CPDZ_box1 {
        margin-top: -50px;
        height: 400px;
    }

    .CPDZ_box1 h1 {
        padding-top: 160px;
    }
}

@media (max-width: 992px) {
    .CPDZ_box1 {
        height: 4rem;
    }

    .CPDZ_box1 h1 {
        padding-top: 2rem;
        font-size: .4rem;
        font-weight: bold;
    }
}

@media (max-width: 640px) {}



.CPDZ_box2 {
    position: relative;
    padding: 150px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.CPDZ_box2 img {
    width: 48%;
    max-width: 665px;
}

.CPDZ_box2 .text {
    width: 48%;
    max-width: 665px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.CPDZ_box2 .text a {
    display: inline-block;
    height: 70px;
    padding-left: 85px;
    padding-right: 20px;
    min-width: 250px;
    background: #ca1c1d url(../../image/ico42.png) no-repeat 32px center;
    font-size: 18px;
    color: #fff;
    line-height: 70px;
    margin-top: 50px;
    transition: all .3s;
}

.CPDZ_box2 .text a:hover {
    opacity: .8;
    transition: all .3s;
}

.CPDZ_box2:nth-child(2) {
    display: flex;
    flex-direction: row-reverse;
}

.CPDZ_box2:nth-child(2)::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: #f2f2f2;
}

@media (max-width: 1600px) {
    .CPDZ_box2 {
        padding: 100px 0;
    }

}

@media (max-width: 1200px) {
    .CPDZ_box2 .text a {
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width: 750px) {
    .CPDZ_box2 {
        padding: 0.8rem 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .CPDZ_box2 img {
        width: 100%;
    }

    .CPDZ_box2 .text {
        width: 100%;
        margin-top: 0.5rem;
    }

    .CPDZ_box2 .text a {
        height: 1rem;
        padding-left: 1.2rem;
        padding-right: 0.3rem;
        font-size: .3rem;
        line-height: 1rem;
        background-size: 0.6rem;
        background-position-x: 0.3rem;
        min-width: 2.6rem;
        margin-top: 0.3rem;
    }

    .CPDZ_box2:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }
}